home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 25 / CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso / CUCD / Magazine / C_Tutorial / Part-13 / PatchLib / source / GetPatchProjectA.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-01  |  1.3 KB  |  58 lines

  1. /*
  2. **    patch.library
  3. **
  4. **    Copyright © 1993-1997 by Stefan Fuchs
  5. **        Freely distributable.
  6. */
  7.  
  8. #ifndef _PATCH_INCLUDES_H
  9. #include "patch_includes.h"
  10. #endif
  11.  
  12.  
  13. /****i* patch.library/GetPatchProjectA ***************************************
  14. *
  15. *   NAME
  16. *        GetPatchProjectA -- Returns certain attributes of a project. (V6)
  17. *        GetPatchProject -- varargs stub for GetPatchProjectA(). (V6)
  18. *
  19. *   SYNOPSIS
  20. *        Result = GetPatchProjectA( project, taglist )
  21. *        D0                         A0       A1
  22. *
  23. *        ULONG Result GetPatchProjectA( APTR, struct TagItem *);
  24. *
  25. *        Result = GetPatchProject( project, ...)
  26. *
  27. *        ULONG Result GetPatchProject( APTR, ...);
  28. *
  29. *   FUNCTION
  30. *        Returns certain attributes and lists connected to a project
  31. *        (see TAGS).
  32. *
  33. *   INPUTS
  34. *        project = pointer to a project structure or NULL for no action
  35. *        taglist = pointer to array of tags
  36. *
  37. *   TAGS
  38. *        No tags defined yet
  39. *
  40. *   RESULT
  41. *        Result = Pointer or longword depending on specified tags.
  42. *
  43. *   NOTES
  44. *        This function is as of V6 just a stub without any functionality.
  45. *
  46. *   BUGS
  47. *
  48. *   SEE ALSO
  49. *        CreatePatchProjectA(), SetPatchProjectA(), patch.h, patchtags.h
  50. *
  51. ******************************************************************************
  52. *
  53. */
  54.  
  55. ULONG LIBFUNC GetPatchProjectA(void)
  56. {
  57.     return(NULL);
  58. }